home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / DelphiWin32 / VCLWin32 / Football / ABOUT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  2004-10-22  |  385 b   |  28 lines

  1. unit about;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TAboutForm = class(TForm)
  11.     Label1: TLabel;
  12.     Memo1: TMemo;
  13.     Button1: TButton;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   AboutForm: TAboutForm;
  22.  
  23. implementation
  24.  
  25. {$R *.dfm}
  26.  
  27. end.
  28.